from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

67256

userrating:

average rating: 1.2 (8 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
rate this article:
current rating: average rating: 1.7 (18 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2024-04-29
Crypt-SMIME - 0.300.0
Ebuild name:

dev-perl/Crypt-SMIME-0.300.0

Description

S/MIME message signing, verification, encryption and decryption

Added to portage

2024-04-29

Faker - 24.14.1
Ebuild name:

dev-python/Faker-24.14.1

Description

A Python package that generates fake data for you

Added to portage

2024-04-29

blinker - 1.8.1
Ebuild name:

dev-python/blinker-1.8.1

Description

Fast, simple object-to-object and broadcast signaling

Added to portage

2024-04-29

bsnes-jg - 1.2.0
Ebuild name:

games-emulation/bsnes-jg-1.2.0

Description

Jolly Good Fork of bsnes

Added to portage

2024-04-29

evolution - 3.52.1
Ebuild name:

mail-client/evolution-3.52.1

Description

Integrated mail, addressbook and calendaring functionality

Added to portage

2024-04-29

evolution-data-server - 3.52.1
Ebuild name:

gnome-extra/evolution-data-server-3.52.1

Description

Evolution groupware backend

Added to portage

2024-04-29

evolution-ews - 3.52.1
Ebuild name:

gnome-extra/evolution-ews-3.52.1

Description

Evolution module for connecting to Microsoft Exchange Web Services

Added to portage

2024-04-29

fail2ban - 1.1.0
Ebuild name:

net-analyzer/fail2ban-1.1.0

Description

Scans log files and bans IPs that show malicious signs

Added to portage

2024-04-29

gambatte-jg - 0.6.0
Ebuild name:

games-emulation/gambatte-jg-0.6.0

Description

Jolly Good Fork of Gambatte

Added to portage

2024-04-29

gcc - 15.0.0_pre20240428
Ebuild name:

sys-devel/gcc-15.0.0_pre20240428

Description

The GNU Compiler Collection

Added to portage

2024-04-29

gentle - 1.0.0
Ebuild name:

app-portage/gentle-1.0.0

Description

Gentoo Lazy Entry - a metadata.xml generator

Added to portage

2024-04-29

git-sources - 6.9_rc6
Ebuild name:

sys-kernel/git-sources-6.9_rc6

Description

The very latest -git version of the Linux kernel

Added to portage

2024-04-29

gmult - 14.0
Ebuild name:

games-kids/gmult-14.0

Description

Multiplication Puzzle emulates the multiplication game found in Emacs

Added to portage

2024-04-29

gnome-calendar - 46.1
Ebuild name:

gnome-extra/gnome-calendar-46.1

Description

Manage your calendars with simple and modern interface

Added to portage

2024-04-29

gnome-contacts - 46.0
Ebuild name:

gnome-extra/gnome-contacts-46.0

Description

GNOME contact management application

Added to portage

2024-04-29

gnome-control-center - 45.4
Ebuild name:

gnome-base/gnome-control-center-45.4

Description

GNOME's main interface to configure various aspects of the des

Added to portage

2024-04-29

grep - 3.11-r1
Ebuild name:

sys-apps/grep-3.11-r1

Description

GNU regular expression matcher

Added to portage

2024-04-29

gtk - 4.14.3
Ebuild name:

gui-libs/gtk-4.14.3

Description

GTK is a multi-platform toolkit for creating graphical user interfaces

Added to portage

2024-04-29

jgrf - 1.1.0
Ebuild name:

games-emulation/jgrf-1.1.0

Description

The Jolly Good Reference Frontend

Added to portage

2024-04-29

lcms - 2.16-r1
Ebuild name:

media-libs/lcms-2.16-r1

Description

A lightweight, speed optimized color management engine

Added to portage

2024-04-29

libadwaita - 1.5.0
Ebuild name:

gui-libs/libadwaita-1.5.0

Description

Building blocks for modern GNOME applications

Added to portage

2024-04-29

libcap-ng - 0.8.5
Ebuild name:

sys-libs/libcap-ng-0.8.5

Description

POSIX 1003.1e capabilities

Added to portage

2024-04-29

liblc3 - 1.1.1
Ebuild name:

media-sound/liblc3-1.1.1

Description

LC3 is an efficient low latency audio codec

Added to portage

2024-04-29

libmicrohttpd - 1.0.1
Ebuild name:

net-libs/libmicrohttpd-1.0.1

Description

Small C library to run an HTTP server as part of another application

Added to portage

2024-04-29

lidarr-bin - 2.3.1.4171
Ebuild name:

www-apps/lidarr-bin-2.3.1.4171

Description

Looks and smells like Sonarr but made for music

Added to portage

2024-04-29

line-profiler - 4.1.3
Ebuild name:

dev-python/line-profiler-4.1.3

Description

Line-by-line profiler

Added to portage

2024-04-29

linksys-tftp - 1.2.1-r4
Ebuild name:

net-ftp/linksys-tftp-1.2.1-r4

Description

TFTP client suitable for uploading to the Linksys WRT54G Wireless Rou

Added to portage

2024-04-29

mednafen-jg - 1.32.1
Ebuild name:

games-emulation/mednafen-jg-1.32.1

Description

Jolly Good Port of Mednafen

Added to portage

2024-04-29

myst-parser - 3.0.1
Ebuild name:

dev-python/myst-parser-3.0.1

Description

Extended commonmark compliant parser, with bridges to Sphinx

Added to portage

2024-04-29

ncurses-compat - 6.4_p20240414
Ebuild name:

sys-libs/ncurses-compat-6.4_p20240414

Description

Console display library (ABI version 5)

Added to portage

2024-04-29

nestopia-jg - 1.52.1
Ebuild name:

games-emulation/nestopia-jg-1.52.1

Description

Jolly Good Fork of Nestopia

Added to portage

2024-04-29

nextcloud - 29.0.0
Ebuild name:

www-apps/nextcloud-29.0.0

Description

Personal cloud that runs on your own server

Added to portage

2024-04-29

pedro - 1.14
Ebuild name:

net-misc/pedro-1.14

Description

Pedro is a subscription/notification communications system

Added to portage

2024-04-29

prowlarr-bin - 1.17.0.4448
Ebuild name:

www-apps/prowlarr-bin-1.17.0.4448

Description

An indexer manager/proxy to integrate with your various PVR apps

Added to portage

2024-04-29

pyqtgraph - 0.13.7
Ebuild name:

dev-python/pyqtgraph-0.13.7

Description

A pure-python graphics and GUI library built on PyQt and numpy

Added to portage

2024-04-29

pytest-xdist - 3.6.1
Ebuild name:

dev-python/pytest-xdist-3.6.1

Description

Distributed testing and loop-on-failing modes

Added to portage

2024-04-29

qemu - 7.2.11
Ebuild name:

app-emulation/qemu-7.2.11

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2024-04-29

qemu - 8.2.3
Ebuild name:

app-emulation/qemu-8.2.3

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2024-04-29

qemu - 9.0.0
Ebuild name:

app-emulation/qemu-9.0.0

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2024-04-29

radarr-bin - 5.5.1.8747
Ebuild name:

www-apps/radarr-bin-5.5.1.8747

Description

A fork of Sonarr to work with movies a la Couchpotato

Added to portage

2024-04-29

readarr-bin - 0.3.25.2515
Ebuild name:

www-apps/readarr-bin-0.3.25.2515

Description

An ebook and audiobook collection manager for Usenet and BitTorren

Added to portage

2024-04-29

regex - 2024.4.28
Ebuild name:

dev-python/regex-2024.4.28

Description

Alternative regular expression module to replace re

Added to portage

2024-04-29

sequoia-chameleon-gnupg - 0.8.0
Ebuild name:

app-crypt/sequoia-chameleon-gnupg-0.8.0

Description

Sequoia's reimplementation of the GnuPG interface

Added to portage

2024-04-29

sequoia-sq - 0.35.0
Ebuild name:

app-crypt/sequoia-sq-0.35.0

Description

CLI of the Sequoia OpenPGP implementation

Added to portage

2024-04-29

sequoia-sqv - 1.2.1
Ebuild name:

app-crypt/sequoia-sqv-1.2.1

Description

A simple OpenPGP signature verification program

Added to portage

2024-04-29

signal-cli-bin - 0.13.1-r1
Ebuild name:

net-im/signal-cli-bin-0.13.1-r1

Description

Send and receive messages of Signal Messenger over a command line i

Added to portage

2024-04-29

signal-cli-bin - 0.13.2-r1
Ebuild name:

net-im/signal-cli-bin-0.13.2-r1

Description

Send and receive messages of Signal Messenger over a command line i

Added to portage

2024-04-29

slime - 2.30
Ebuild name:

app-emacs/slime-2.30

Description

SLIME, the Superior Lisp Interaction Mode (Extended)

Added to portage

2024-04-29

ubuntu-keyring - 2020.02.11.2
Ebuild name:

app-crypt/ubuntu-keyring-2020.02.11.2

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2024-04-29

ubuntu-keyring - 2020.06.17.1
Ebuild name:

app-crypt/ubuntu-keyring-2020.06.17.1

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2024-04-29

2024-04-28
389-ds-base - 3.0.2
Ebuild name:

net-nds/389-ds-base-3.0.2

Description

389 Directory Server (core libraries and daemons)

Added to portage

2024-04-28

Alien-Gnuplot - 1.43.0
Ebuild name:

dev-perl/Alien-Gnuplot-1.43.0

Description

Find and verify functionality of the gnuplot executable

Added to portage

2024-04-28

AnyEvent-I3 - 0.190.0
Ebuild name:

dev-perl/AnyEvent-I3-0.190.0

Description

Communicate with the i3 window manager

Added to portage

2024-04-28

App-Cmd - 0.336.0
Ebuild name:

dev-perl/App-Cmd-0.336.0

Description

Write command line apps with less suffering

Added to portage

2024-04-28

Archive-Tar-Wrapper - 0.390.0
Ebuild name:

dev-perl/Archive-Tar-Wrapper-0.390.0

Description

API wrapper around the 'tar' utility

Added to portage

2024-04-28

agate - 1.10.1
Ebuild name:

dev-python/agate-1.10.1

Description

A Python data analysis library that is optimized for humans instead of mach

Added to portage

2024-04-28

bash - 5.1_p16-r9
Ebuild name:

app-shells/bash-5.1_p16-r9

Description

The standard GNU Bourne again shell

Added to portage

2024-04-28

bash - 5.2_p26-r2
Ebuild name:

app-shells/bash-5.2_p26-r2

Description

The standard GNU Bourne again shell

Added to portage

2024-04-28

bash - 5.3_alpha-r1
Ebuild name:

app-shells/bash-5.3_alpha-r1

Description

The standard GNU Bourne again shell

Added to portage

2024-04-28

binwalk - 2.4.1
Ebuild name:

app-misc/binwalk-2.4.1

Description

A tool for identifying files embedded inside firmware images

Added to portage

2024-04-28

blinker - 1.8.0
Ebuild name:

dev-python/blinker-1.8.0

Description

Fast, simple object-to-object and broadcast signaling

Added to portage

2024-04-28

cairocffi - 1.7.0
Ebuild name:

dev-python/cairocffi-1.7.0

Description

CFFI-based drop-in replacement for Pycairo

Added to portage

2024-04-28

carbon-c-relay - 3.8.1
Ebuild name:

app-misc/carbon-c-relay-3.8.1

Description

Enhanced C version of Carbon relay, aggregator and rewriter

Added to portage

2024-04-28

checksec - 2.7.1
Ebuild name:

app-admin/checksec-2.7.1

Description

Tool to check properties of executables (e.g. ASLR/PIE, RELRO, PaX, Canari

Added to portage

2024-04-28

cmigemo - 1.3c-r4
Ebuild name:

app-text/cmigemo-1.3c-r4

Description

Migemo library implementation in C

Added to portage

2024-04-28

cmigemo - 1.3e_p20220623
Ebuild name:

app-text/cmigemo-1.3e_p20220623

Description

Migemo library implementation in C

Added to portage

2024-04-28

conky - 1.20.2
Ebuild name:

app-admin/conky-1.20.2

Description

An advanced, highly configurable system monitor for X

Added to portage

2024-04-28

discover - 6.0.4
Ebuild name:

kde-plasma/discover-6.0.4

Description

KDE Plasma resources management GUI

Added to portage

2024-04-28

dist-kernel - 5.15.157
Ebuild name:

virtual/dist-kernel-5.15.157

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-04-28

dist-kernel - 6.1.88
Ebuild name:

virtual/dist-kernel-6.1.88

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-04-28

dist-kernel - 6.6.29
Ebuild name:

virtual/dist-kernel-6.6.29

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-04-28

dist-kernel - 6.8.8
Ebuild name:

virtual/dist-kernel-6.8.8

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-04-28

docker - 24.0.5-r1
Ebuild name:

app-containers/docker-24.0.5-r1

Description

The core functions you need to create Docker images and run Docker

Added to portage

2024-04-28

docker - 24.0.7-r1
Ebuild name:

app-containers/docker-24.0.7-r1

Description

The core functions you need to create Docker images and run Docker

Added to portage

2024-04-28

docker - 26.1.0-r1
Ebuild name:

app-containers/docker-26.1.0-r1

Description

The core functions you need to create Docker images and run Docker

Added to portage

2024-04-28

ed - 1.20.2
Ebuild name:

sys-apps/ed-1.20.2

Description

Your basic line editor

Added to portage

2024-04-28

element - 1.11.65
Ebuild name:

www-apps/element-1.11.65

Description

A glossy Matrix collaboration client for the web

Added to portage

2024-04-28

evaluate - 0.4.0-r4
Ebuild name:

sci-libs/evaluate-0.4.0-r4

Description

makes evaluating, comparing models and reporting their performance easie

Added to portage

2024-04-28

fig2sxd - 0.23
Ebuild name:

sci-visualization/fig2sxd-0.23

Description

Utility to convert files in xfig format to OpenOffice.org Draw forma

Added to portage

2024-04-28

furo - 2024.4.27
Ebuild name:

dev-python/furo-2024.4.27

Description

Clean customisable Sphinx documentation theme

Added to portage

2024-04-28

gcc - 14.0.1_pre20240427
Ebuild name:

sys-devel/gcc-14.0.1_pre20240427

Description

The GNU Compiler Collection

Added to portage

2024-04-28

gentoo-kernel - 5.15.157
Ebuild name:

sys-kernel/gentoo-kernel-5.15.157

Description

Linux kernel built with Gentoo patches

Added to portage

2024-04-28

gentoo-kernel - 6.1.88
Ebuild name:

sys-kernel/gentoo-kernel-6.1.88

Description

Linux kernel built with Gentoo patches

Added to portage

2024-04-28

gentoo-kernel - 6.6.29
Ebuild name:

sys-kernel/gentoo-kernel-6.6.29

Description

Linux kernel built with Gentoo patches

Added to portage

2024-04-28

gentoo-kernel - 6.8.8
Ebuild name:

sys-kernel/gentoo-kernel-6.8.8

Description

Linux kernel built with Gentoo patches

Added to portage

2024-04-28

gentoo-kernel-bin - 5.15.157
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.157

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-04-28

gentoo-kernel-bin - 6.1.88
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.88

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-04-28

gentoo-kernel-bin - 6.6.29
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.29

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-04-28

gentoo-kernel-bin - 6.8.8
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.8.8

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-04-28

gentoo-sources - 5.15.157
Ebuild name:

sys-kernel/gentoo-sources-5.15.157

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-04-28

gentoo-sources - 6.1.88
Ebuild name:

sys-kernel/gentoo-sources-6.1.88

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-04-28

gentoo-sources - 6.6.29
Ebuild name:

sys-kernel/gentoo-sources-6.6.29

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-04-28

gentoo-sources - 6.8.8
Ebuild name:

sys-kernel/gentoo-sources-6.8.8

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-04-28

gnupg - 2.2.43
Ebuild name:

app-crypt/gnupg-2.2.43

Description

The GNU Privacy Guard, a GPL OpenPGP implementation

Added to portage

2024-04-28

gnutls - 3.8.5-r1
Ebuild name:

net-libs/gnutls-3.8.5-r1

Description

A secure communications library implementing the SSL, TLS and DTLS protoco

Added to portage

2024-04-28

heppdt - 3.04.01-r2
Ebuild name:

sci-physics/heppdt-3.04.01-r2

Description

Data about each particle from the Review of Particle Properties

Added to portage

2024-04-28

hvac - 2.2.0
Ebuild name:

dev-python/hvac-2.2.0

Description

HashiCorp Vault API client

Added to portage

2024-04-28

hypothesis - 6.100.2
Ebuild name:

dev-python/hypothesis-6.100.2

Description

A library for property based testing

Added to portage

2024-04-28

krop - 0.6.0-r3
Ebuild name:

app-text/krop-0.6.0-r3

Description

A tool to crop PDF files

Added to portage

2024-04-28

libgpod - 0.8.3-r7
Ebuild name:

media-libs/libgpod-0.8.3-r7

Description

Shared library to access the contents of an iPod

Added to portage

2024-04-28

libsdl2 - 2.30.1-r1
Ebuild name:

media-libs/libsdl2-2.30.1-r1

Description

Simple Direct Media Layer

Added to portage

2024-04-28

libsdl2 - 2.30.2-r1
Ebuild name:

media-libs/libsdl2-2.30.2-r1

Description

Simple Direct Media Layer

Added to portage

2024-04-28

libticonv - 1.1.5-r1
Ebuild name:

sci-libs/libticonv-1.1.5-r1

Description

Charset conversion library for TI calculators

Added to portage

2024-04-28

mac - 10.71
Ebuild name:

media-sound/mac-10.71

Description

Monkey's Audio Codecs

Added to portage

2024-04-28

maq - 0.7.1-r4
Ebuild name:

sci-biology/maq-0.7.1-r4

Description

Mapping and Assembly with Qualities, mapping NGS reads to reference genome

Added to portage

2024-04-28

maqview - 0.2.5-r5
Ebuild name:

sci-biology/maqview-0.2.5-r5

Description

GUI for sci-biology/maq, a short read mapping assembler

Added to portage

2024-04-28

mbr - 1.1.11-r2
Ebuild name:

sys-boot/mbr-1.1.11-r2

Description

A replacement master boot record for IBM-PC compatible computers

Added to portage

2024-04-28

midisport-firmware - 1.2-r2
Ebuild name:

sys-firmware/midisport-firmware-1.2-r2

Description

Firmware for M-Audio/Midiman USB MIDI devices

Added to portage

2024-04-28

mkdocstrings - 0.25.0
Ebuild name:

dev-python/mkdocstrings-0.25.0

Description

Automatic documentation from sources, for MkDocs

Added to portage

2024-04-28

moto - 5.0.6
Ebuild name:

dev-python/moto-5.0.6

Description

Mock library for boto

Added to portage

2024-04-28

nanoc - 4.12.21
Ebuild name:

www-apps/nanoc-4.12.21

Description

nanoc is a simple but very flexible static site generator written in Ruby

Added to portage

2024-04-28

nanoc-cli - 4.12.21
Ebuild name:

www-apps/nanoc-cli-4.12.21

Description

nanoc is a simple but very flexible static site generator written in Rub

Added to portage

2024-04-28

nanoc-core - 4.12.21
Ebuild name:

www-apps/nanoc-core-4.12.21

Description

nanoc is a simple but very flexible static site generator written in Ru

Added to portage

2024-04-28

ncurses - 6.5-r1
Ebuild name:

sys-libs/ncurses-6.5-r1

Description

Console display library

Added to portage

2024-04-28

nextcloud - 27.1.9
Ebuild name:

www-apps/nextcloud-27.1.9

Description

Personal cloud that runs on your own server

Added to portage

2024-04-28

nextcloud - 28.0.5
Ebuild name:

www-apps/nextcloud-28.0.5

Description

Personal cloud that runs on your own server

Added to portage

2024-04-28

nextcloud-client - 3.13.0
Ebuild name:

net-misc/nextcloud-client-3.13.0

Description

Desktop Syncing Client for Nextcloud

Added to portage

2024-04-28

noseofyeti - 2.4.9
Ebuild name:

dev-python/noseofyeti-2.4.9

Description

A custom python codec that provides an RSpec style dsl for python

Added to portage

2024-04-28

openpgp-keys-gentoo-developers - 20240422
Ebuild name:

sec-keys/openpgp-keys-gentoo-developers-20240422

Description

Gentoo Authority Keys (GLEP 79)

Added to portage

2024-04-28

paste - 3.10.0
Ebuild name:

dev-python/paste-3.10.0

Description

Tools for using a Web Server Gateway Interface stack

Added to portage

2024-04-28

portage - 3.0.64
Ebuild name:

sys-apps/portage-3.0.64

Description

The package management and distribution system for Gentoo

Added to portage

2024-04-28

pymdown-extensions - 10.8.1
Ebuild name:

dev-python/pymdown-extensions-10.8.1

Description

Extensions for Python Markdown

Added to portage

2024-04-28

pytest - 8.2.0
Ebuild name:

dev-python/pytest-8.2.0

Description

Simple powerful testing with Python

Added to portage

2024-04-28

safetensors - 0.4.3
Ebuild name:

sci-libs/safetensors-0.4.3

Description

Simple, safe way to store and distribute tensors

Added to portage

2024-04-28

slack - 4.38.115
Ebuild name:

net-im/slack-4.38.115

Description

Team collaboration tool

Added to portage

2024-04-28

snapd-glib - 1.65-r102
Ebuild name:

sys-libs/snapd-glib-1.65-r102

Description

glib library for communicating with snapd

Added to portage

2024-04-28

snapd-glib - 1.65-r2
Ebuild name:

sys-libs/snapd-glib-1.65-r2

Description

glib library for communicating with snapd

Added to portage

2024-04-28

snapper - 0.11.0
Ebuild name:

app-backup/snapper-0.11.0

Description

Command-line program for btrfs and lvm snapshot management

Added to portage

2024-04-28

sonarr-bin - 4.0.4.1572
Ebuild name:

www-apps/sonarr-bin-4.0.4.1572

Description

Sonarr is a Smart PVR for newsgroup and bittorrent users

Added to portage

2024-04-28

sphinx-gallery - 0.16.0
Ebuild name:

dev-python/sphinx-gallery-0.16.0

Description

Sphinx extension to automatically generate an examples gallery

Added to portage

2024-04-28

tcolorpy - 0.1.6
Ebuild name:

dev-python/tcolorpy-0.1.6

Description

tcolorpy is a Python library to apply true color for terminal text

Added to portage

2024-04-28

transformers - 4.37.2
Ebuild name:

sci-libs/transformers-4.37.2

Description

State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow

Added to portage

2024-04-28

uv - 0.1.39
Ebuild name:

dev-python/uv-0.1.39

Description

A Python package installer and resolver, written in Rust

Added to portage

2024-04-28

vanilla-kernel - 5.15.157
Ebuild name:

sys-kernel/vanilla-kernel-5.15.157

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-04-28

vanilla-kernel - 6.1.88
Ebuild name:

sys-kernel/vanilla-kernel-6.1.88

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-04-28

vanilla-kernel - 6.6.29
Ebuild name:

sys-kernel/vanilla-kernel-6.6.29

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-04-28

vanilla-kernel - 6.8.8
Ebuild name:

sys-kernel/vanilla-kernel-6.8.8

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-04-28

wayvnc - 0.8.0-r1
Ebuild name:

gui-apps/wayvnc-0.8.0-r1

Description

VNC server for wlroots based Wayland compositors

Added to portage

2024-04-28

wlroots - 0.17.3
Ebuild name:

gui-libs/wlroots-0.17.3

Description

Pluggable, composable, unopinionated modules for building a Wayland composi

Added to portage

2024-04-28

wmcalendar - 0.5.2-r3
Ebuild name:

x11-plugins/wmcalendar-0.5.2-r3

Description

a calendar dockapp

Added to portage

2024-04-28

xmlschema - 3.3.1
Ebuild name:

dev-python/xmlschema-3.3.1

Description

An XML Schema validator and decoder

Added to portage

2024-04-28

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 53.0 ms